home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-02 | 1.2 KB | 51 lines | [TEXT/MPS ] |
- //----------------------------------------------------------------------------------------
- // MIconEdit.cp
- // Copyright © 1988-96 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #ifndef __UICONEDIT__
- #include "UIconEdit.h"
- #endif
-
- // MacApp
-
- #ifndef __UERRORMGR__
- #include "UErrorMgr.h"
- #endif
-
- #ifndef __UMACAPPGLOBALS__
- #include "UMacAppGlobals.h"
- #endif
-
- #ifndef __UMACAPPUTILITIES__
- #include "UMacAppUtilities.h"
- #endif
-
- #ifndef __UPRINTING__
- #include "UPrinting.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // main:
- //----------------------------------------------------------------------------------------
- #pragma push
- #pragma processor 68000
- #pragma segment Main
-
- void main()
- {
- InitUMacApp(4); // Initialize MacApp with 4 calls to MoreMasters.
- InitUPrinting();
-
- TIconEditApplication* anIconEditApplication = new TIconEditApplication;
- anIconEditApplication->IIconEditApplication();
- anIconEditApplication->Run();
- } // main
-
- #pragma pop
-
- //----------------------------------------------------------------------------------------
- // End of MIconEdit.cp
-
- #pragma segment Inline
-